DataSource for Entity Framework in WPF
C1.LiveLinq.LiveViews Namespace / View<T> Class / Concat Method / Concat(ObservableCollection<T>) Method
A collection to concatenate to this view's collection of elements.

In This Topic
    Concat(ObservableCollection<T>) Method
    In This Topic
    Concatenation of this view and a collection.
    Syntax
    'Declaration
     
    Public Overloads Function Concat( _
       ByVal second As ObservableCollection(Of T) _
    ) As View(Of T)
    public View<T> Concat( 
       ObservableCollection<T> second
    )

    Parameters

    second
    A collection to concatenate to this view's collection of elements.

    Return Value

    The view that contains first the elements of this view and then the elements of the parameter collection.
    See Also